home *** CD-ROM | disk | FTP | other *** search
/ Das Beste aus 2002 / Das Beste aus 2002.iso / bilderansehen / i_options.txt < prev    next >
Text File  |  2001-08-15  |  4KB  |  94 lines

  1. ---------------------------------------------------------------------------------
  2. File  : 'options.txt' - Command line options for IrfanView
  3. Author: Irfan Skiljan
  4. E-Mail: irfan@linux.tuwien.ac.at
  5. WWW   : http://www.irfanview.com
  6. ---------------------------------------------------------------------------------
  7.  
  8. List of all command line options supported in IrfanView:
  9. --------------------------------------------------------
  10.  
  11.   /one               - force "only one instance"
  12.   /fs                - force Full Screen
  13.   /bf                - force Best Fit to desktop
  14.   /title=text        - set window title to "text"
  15.   /pos=(x,y)         - move IrfanView window to x,y
  16.   /convert=filename  - convert input file to "filename" and close IrfanView
  17.   /slideshow=txtfile - play slideshow with the files from "txtfile"
  18.   /thumbs            - force thumbnails
  19.   /killmesoftly      - close all IrfanView instances
  20.   /closeslideshow    - close slideshow and IrfanView after the last image
  21.   /page=X            - open page number X from a multipage input image
  22.   /crop=(x,y,w,h)    - crop input image: x-start, y-start, width, height
  23.   /print             - print input image to default printer and close IrfanView
  24.   /resize=(w,h)      - resize input image to w (width) and h (height)
  25.   /resample=(w,h)    - resample input image to w (width) and h (height)
  26.   /capture           - capture the whole screen and show image in IrfanView
  27.   /ini               - use "i_view32.ini" from the Windows folder
  28.  
  29. Note:
  30. - Only lower case options are supported !
  31.  
  32. Examples: 
  33.    i_view32.exe test.bmp /BF                 = incorrect
  34.    i_view32.exe test.bmp /bf /title=My PIC   = correct
  35.  
  36. Example for conversion: 
  37.   i_view32.exe c:\test.bmp /convert=c:\giftest.gif
  38.   => Convert file: 'c:\test.bmp' to 'c:\giftest.gif' without GUI :-)
  39.   (Note: supported are all IrfanView read/save formats except: 
  40.          AVI,MOV,MPG,WAV,MID,AIF,SND)
  41.  
  42. Example for slideshow: 
  43.   i_view32.exe /slideshow=c:\mypics.txt
  44.   (Note: The file 'c:\mypics.txt' contains, in each line, a name of the image,
  45.          including the full path. A hard return is needed at the end of each
  46.          line)
  47.  
  48. Example for closeslideshow: 
  49.   i_view32.exe /slideshow=c:\mypics.txt /closeslideshow
  50.   => IrfanView will be closed after the last image from 'c:\mypics.txt'
  51.  
  52. Example for thumbnails: 
  53.   i_view32.exe c:\test\image1.jpg /thumbs
  54.   => open 'image1.jpg' and display thumbnails from directory 'c:\test'
  55.   or
  56.   i_view32.exe c:\test /thumbs
  57.   => display thumbnails from directory 'c:\test'
  58.  
  59. Example for close: 
  60.   i_view32.exe /killmesoftly
  61.   => close IrfanView and terminate all instances
  62.  
  63. Example for page:
  64.   i_view32.exe c:\test.tif /page=3
  65.   => Open page number 3 from the multipage image 'c:\test.tif'
  66.  
  67. Example for crop:
  68.   i_view32.exe c:\test.jpg /crop=(10,10,300,300)
  69.   => Open 'c:\test.jpg' and crop: x-start=10, y-start=10, width=300, height=300
  70.  
  71. Example for print:
  72.   i_view32.exe c:\test.jpg /print
  73.   => Open 'c:\test.jpg', print the image to default printer and close IrfanView
  74.  
  75. Example for resize:
  76.   i_view32.exe c:\test.jpg /resize=(300,300)
  77.   => Open 'c:\test.jpg' and resize: width=300, height=300
  78.   i_view32.exe c:\test.jpg /resize=(300,0)
  79.   => Open 'c:\test.jpg' and resize: width=300, height=proportional
  80.  
  81. Example for resample:
  82.   i_view32.exe c:\test.jpg /resample=(300,300)
  83.   => Open 'c:\test.jpg' and resample: width=300, height=300
  84.   i_view32.exe c:\test.jpg /resample=(0,300)
  85.   => Open 'c:\test.jpg' and resample: width=proportional, height=300
  86.      (using the active resample filter from the I_VIEW32.INI)
  87.  
  88. Example for capture:
  89.   i_view32.exe /capture
  90.  
  91. Example for ini:
  92.   i_view32.exe /ini
  93.   i_view32.exe c:\test.jpg /ini
  94.